home *** CD-ROM | disk | FTP | other *** search
- //////////////////////////////////////////////////////////////
- //
- // Header file for Stopwatch
- //
- // This file is generated by BuildXcessory. DO NOT MODIFY.
- // USE SUBCLASSING INSTEAD
- //
- // This class is a user interface "component", as described
- // in "Object-Oriented Programming with C++ and OSF/Motif",
- // by Douglas Young, Prentice Hall, 1992. ISBN 0-13-630252-1
- //
- // If you directly modify this file, you may lose your
- // changes if it is regenerated by the builder again.
- //
- //////////////////////////////////////////////////////////////
- #ifndef STOPWATCH_H
- #define STOPWATCH_H
- #include <Vk/VkComponent.h>
- #include "ControlDerived.h"
- #include "FaceDerived.h"
-
-
- // Externally defined classes referenced by this class ;
-
- class ControlDerived;
- class FaceDerived;
- class StopwatchDerived;
-
- class Stopwatch : public VkComponent
- {
-
- public:
-
- Stopwatch(const char *, Widget);
- ~Stopwatch();
- const char * className();
-
- protected:
-
- // Classes created by this class
-
- FaceDerived *_face;
- ControlDerived *_control;
-
- // Widgets created by this class
-
- Widget _stopwatch;
-
-
- private:
-
- // Array of default resources
-
- static String _defaultStopwatchResources[];
- };
- #endif
-
-